home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 26.zip / BS1 part 26 / C for beginners.adf / source / error_msg.c < prev    next >
C/C++ Source or Header  |  1978-01-17  |  295b  |  18 lines

  1. /* error.c 21 */
  2. char *error[] =
  3. {
  4. "Everything OK, no error!",
  5. "Wrong key activated!",
  6. "Please insert Diskette!"
  7. };
  8.  
  9. main()
  10. {
  11. /* Display all error messages */
  12. int i, error_msg = sizeof(error) / sizeof(char *);
  13.  
  14. for(i = 0; i < error_msg; i++)
  15. printf("Error Number %d: \"%s\"\n", i, error[i]);
  16. }
  17.  
  18.